home *** CD-ROM | disk | FTP | other *** search
- ; LOADCOMP.S
- ;************************************************************************
- ;* *
- ;* PC Scheme/Geneva 4.00 Scheme code *
- ;* *
- ;* (c) 1985-1988 by Texas Instruments, Inc. See COPYRIGHT.TXT *
- ;* (c) 1992 by L. Bartholdi & M. Vuilleumier, University of Geneva *
- ;* *
- ;*----------------------------------------------------------------------*
- ;* *
- ;* Autoload definitions for COMPILER.APP *
- ;* *
- ;*----------------------------------------------------------------------*
- ;* *
- ;* Created by: Terry Caudill Date: 1985 *
- ;* Revision history: *
- ;* - 18 Jun 92: Renaissance (Borland Compilers, ...) *
- ;* *
- ;* ``In nomine omnipotentii dei'' *
- ;************************************************************************
-
- ;
- ; Set up the standard autoload files. LOADRUN.S also has autoload
- ; definitions for runtime version. Both LOADCOMP.S and LOADRUN.S
- ; should be included in COMPILER.APP.
-
- (autoload-from-file (%system-file-name "SCOOPS.FSL") ; SCOOPS
- '(load-scoops)
- user-global-environment)
-
- (autoload-from-file (%system-file-name "INSPECT.FSL") ; INSPECTOR
- '(%inspect %inspector)
- user-global-environment)
-
- (autoload-from-file (%system-file-name "DEFSTRUC.FSL") ; DEFINE-STRUCTURE
- '(%define-structure %make-structure %structure-predicate)
- user-global-environment)
-
- (autoload-from-file (%system-file-name "EDIT.FSL") ; STRUCTURE EDITOR
- '(edit)
- user-global-environment)
-
- (autoload-from-file (%system-file-name "ADVISE.FSL") ; PADVISE
- '(advise-entry advise-exit break break-both break-entry break-exit
- trace trace-both trace-entry trace-exit unadvise unadvise-entry
- unadvise-exit unbreak unbreak-entry unbreak-exit untrace untrace-entry
- untrace-exit *args* *proc* *result*)
- user-global-environment)
-
-